#!/bin/bash
if [ "$(pidof conky)" ]; then
    killall conky
    conky -q -c ~/.pekwm/pek_conkyrc
    exit
else
    conky -q -c ~/.pekwm/pek_conkyrc
    exit
fi
